home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / exec / funcmdhe.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  520 b   |  24 lines

  1. /*
  2. \funcref{fun\_cmd\_head}{void fun\_cmd\_head ()}
  3.     {}
  4.     {}
  5.     {setstring()}
  6.     {fun\_arg\_tail(), fun\_arg\_head(), fun\_cmd\_tail()}
  7.     {funcmdte.c}
  8.     {
  9.  
  10.         This function is called when an {\em op\_cmd\_head} opcode is read in
  11.         the binary makefile. The {\em cmdhead} variable is set to a duplicate
  12.         of the string in the last pushed variable. The last pushed variable is
  13.         then discarded.
  14.  
  15.     }
  16. */
  17.  
  18. #include "icm-exec.h"
  19.  
  20. void fun_cmd_head ()
  21. {
  22.     cmdhead = setstring (cmdhead);
  23. }
  24.